projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
20c9c1d
)
* emacs.c (main): Fix syntax error.
author
Jan Djärv
<jan.h.d@swipnet.se>
Wed, 10 Jul 2013 11:27:15 +0000
(13:27 +0200)
committer
Jan Djärv
<jan.h.d@swipnet.se>
Wed, 10 Jul 2013 11:27:15 +0000
(13:27 +0200)
src/ChangeLog
patch
|
blob
|
history
src/emacs.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 049c917edddcfadc716d9975a197017b1e1d2eab..dcd7c13b00f1a1900e5ff52fbfb005a5c53e35aa 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,7
@@
+2013-07-10 Jan Djärv <jan.h.d@swipnet.se>
+
+ * emacs.c (main): Fix syntax error.
+
2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
Timestamp fixes for undo (Bug#14824).
diff --git
a/src/emacs.c
b/src/emacs.c
index ee72095f705072407bd44a391a177c7b909876e0..7c0ddf97a0151a9c0ebf512ec5dece09172ccd05 100644
(file)
--- a/
src/emacs.c
+++ b/
src/emacs.c
@@
-1042,7
+1042,7
@@
Using an Emacs configured with --with-x-toolkit=lucid does not have this problem
execvp (argv[0], argv);
emacs_perror (argv[0]);
- exit (errno == ENOENT
:
EXIT_ENOENT : EXIT_CANNOT_INVOKE);
+ exit (errno == ENOENT
?
EXIT_ENOENT : EXIT_CANNOT_INVOKE);
}
/* In exec'd: parse special dname into pipe and name info. */